home *** CD-ROM | disk | FTP | other *** search
- class CSkipLevelButton extends MovieClip
- {
- var _iLevel = 0;
- function CSkipLevelButton()
- {
- super();
- }
- function OnClicked()
- {
- FreshDebug.Trace("OnClicked " + this._iLevel);
- _root._iStartLevel = this._iLevel - 1;
- _root._mainMenu.gotoAndPlay("dismiss pick");
- }
- }
-